15 lines
498 B
TypeScript
15 lines
498 B
TypeScript
|
|
import type { ConfirmDialogTokenSections } from '@primeuix/themes/types/confirmdialog';
|
||
|
|
|
||
|
|
export * from '@primeuix/themes/types/confirmdialog';
|
||
|
|
|
||
|
|
declare const icon: ConfirmDialogTokenSections.Icon;
|
||
|
|
declare const content: ConfirmDialogTokenSections.Content;
|
||
|
|
declare const css: ConfirmDialogTokenSections.CSS;
|
||
|
|
declare const _default: {
|
||
|
|
icon: ConfirmDialogTokenSections.Icon;
|
||
|
|
content: ConfirmDialogTokenSections.Content;
|
||
|
|
css: string;
|
||
|
|
};
|
||
|
|
|
||
|
|
export { content, css, _default as default, icon };
|