import * as React from "react"; export type TablePlaceholderBaseProps = { placeholderItems: { id: string; item: React.ReactElement; }[]; placeholderTitle: string; createButtonTitle: string; createButtonLink: string; enableCreateButton: boolean; svgElement?: React.ReactNode; /** * - Default is undefined */ marginBottom?: string; }; export declare const TablePlaceholderBase: ({ placeholderItems, placeholderTitle, createButtonTitle, createButtonLink, marginBottom, enableCreateButton, svgElement, }: TablePlaceholderBaseProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=TablePlaceholderBase.d.ts.map