1 | import * as React from 'react';
|
2 | export interface CardHeaderProps extends React.HTMLProps<HTMLDivElement> {
|
3 | /** Content rendered inside the CardHeader */
|
4 | children?: React.ReactNode;
|
5 | /** Additional classes added to the CardHeader */
|
6 | className?: string;
|
7 | /** ID of the card header. */
|
8 | id?: string;
|
9 | /** Callback expandable card */
|
10 | onExpand?: (event: React.MouseEvent, id: string) => void;
|
11 | /** Additional props for expandable toggle button */
|
12 | toggleButtonProps?: any;
|
13 | /** Whether to right-align expandable toggle button */
|
14 | isToggleRightAligned?: boolean;
|
15 | }
|
16 | export declare const CardHeader: React.FunctionComponent<CardHeaderProps>;
|
17 | //# sourceMappingURL=CardHeader.d.ts.map |
\ | No newline at end of file |