@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
14 lines • 418 B
TypeScript
/// <reference types="react" />
interface PostExcerptProps {
/**
* The placeholder to show when no excerpt is set.
*/
placeholder?: string;
/**
* Remaining props to pass to the paragraph element.
*/
[key: string]: unknown;
}
export declare const PostExcerpt: ({ placeholder, ...rest }: PostExcerptProps) => import("react").JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map