Files
klz-cables.com/.pnpm-store/v10/files/9f/e44d95d53375d3a1bb37cef04746d0768aeb99fd466380b0eb3cfd3b3e9cd8c69f84e158a19f6dd04f3fae53316b642a2df2baf8d4f0b9415cee829e364ced
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

22 lines
641 B
Plaintext

/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
import type { ElementFormatType, NodeKey } from 'lexical';
import type { JSX } from 'react';
import { ReactNode } from 'react';
type Props = Readonly<{
children: ReactNode;
format?: ElementFormatType | null;
nodeKey: NodeKey;
className: Readonly<{
base: string;
focus: string;
}>;
}>;
export declare function BlockWithAlignableContents({ children, format, nodeKey, className, }: Props): JSX.Element;
export {};